begintownscript;
variables;
       int a;
body;
beginstate INIT_STATE;
    if (get_flag(104, 5) == 1)
    {
       erase_char(12);
       erase_char(13);
    }
       set_name(9, "Tetta");
       set_name(18, "Rendar");
       set_name(24, "Derbis");
       set_name(26, "Tylg");
       set_name(33, "Chef");
break;
beginstate EXIT_STATE;
break;
beginstate START_STATE;
       a = get_ran(1, 1, 3);
       if (a == 1) {
              text_bubble_on_char(9, "Hello!");
              text_bubble_on_char(18, "So you're here.");
              text_bubble_on_char(24, "Welcome!");
              text_bubble_on_char(26, "Oh, hi!");
              text_bubble_on_char(33, "Mmmmmm");
              }
       if (a == 2) {
              text_bubble_on_char(9, "What do you want?");
              text_bubble_on_char(18, "I didn't expect this.");
              text_bubble_on_char(24, "How may I help?");
              text_bubble_on_char(26, "Hmmmm");
              text_bubble_on_char(33, "Hmm");
              }
       if (a == 3) {
              text_bubble_on_char(9, "I have tools.");
              text_bubble_on_char(18, "Humans.");
              text_bubble_on_char(24, "I do know English.");
              text_bubble_on_char(26, "Aha");
              text_bubble_on_char(33, "<something you don't understand>");
              }
break;
beginstate 10;
       if (get_flag(4, 0) == 0)
           message_dialog("This is definetly not what you expected to find on your way below Serpent Delta.", "");
       set_flag(4, 0, 1);
break;
beginstate 11;
    if (get_flag(4, 1) == 0)
        message_dialog("There are several crystals placed on pedestals in rows. Crystals like these are called mind crystals.", "They are like the 'books' of the vahnatai.");
    set_flag(4, 1, 1);
break;